home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 May / macformat-024.iso / Shareware City / Graphics / EPS Fixer 1.5 / Scripting EPS Fixer / Set PICT to bounding box (Text) < prev    next >
Encoding:
Text File  |  1995-01-22  |  392 b   |  17 lines  |  [TEXT/ToyS]

  1. on open theList
  2.     tell application "EPS Fixer"
  3.         set openStatus to uponOpening
  4.         set uponOpening to do nothing
  5.         activate
  6.         repeat with theFile in theList
  7.             open theFile
  8.             tell document frontWindowName
  9.                 set PICT rectangle to bounding box
  10.                 save document frontWindowName
  11.                 close document frontWindowName
  12.             end tell
  13.         end repeat
  14.         set uponOpening to openStatus
  15.     end tell
  16.     quit
  17. end open